Blend for Visual studio 2015 removed this feature.Can Blend for Visual studio 2017 import psd file now?
برچسب: نویسنده: استخدام کار تاريخ: دوشنبه 30 اسفند 1395 ساعت: 12:53
برچسب: نویسنده: استخدام کار تاريخ: دوشنبه 30 اسفند 1395 ساعت: 12:53
برچسب: نویسنده: استخدام کار تاريخ: دوشنبه 30 اسفند 1395 ساعت: 12:53
برچسب: نویسنده: استخدام کار تاريخ: جمعه 27 اسفند 1395 ساعت: 23:13
برچسب: نویسنده: استخدام کار تاريخ: جمعه 27 اسفند 1395 ساعت: 23:13
برچسب: نویسنده: استخدام کار تاريخ: جمعه 27 اسفند 1395 ساعت: 23:13
برچسب: نویسنده: استخدام کار تاريخ: پنجشنبه 26 اسفند 1395 ساعت: 7:06
برچسب: نویسنده: استخدام کار تاريخ: پنجشنبه 26 اسفند 1395 ساعت: 7:06
برچسب: نویسنده: استخدام کار تاريخ: پنجشنبه 26 اسفند 1395 ساعت: 7:06
برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 25 اسفند 1395 ساعت: 1:17
برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 25 اسفند 1395 ساعت: 1:17
برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 25 اسفند 1395 ساعت: 1:17
برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 18 اسفند 1395 ساعت: 20:52
برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 18 اسفند 1395 ساعت: 20:52
Blend for Visual studio 2015 removed this feature.Can Blend for Visual studio 2017 import psd file now?
برچسب: نویسنده: استخدام کار تاريخ: چهارشنبه 18 اسفند 1395 ساعت: 20:52
برچسب: نویسنده: استخدام کار تاريخ: شنبه 14 اسفند 1395 ساعت: 13:43
برچسب: نویسنده: استخدام کار تاريخ: شنبه 14 اسفند 1395 ساعت: 13:43
برچسب: نویسنده: استخدام کار تاريخ: شنبه 14 اسفند 1395 ساعت: 13:43
We have project structure as src/test/jmeter/regressionTests/jmx1,jmx2,jmx2 The regressionTests folder has different jmx files. These files can execute in parallel.(They have no dependency on each other.Each jmx file creates its own data and then deletes the data created at last.)
Currently we run them using maven command :
-Pprofile-jmeter jmeter:jmeter -DtestType=regressionTest -DskipTests=true
The pom.xml config is as follow :
<profiles>
<profile>
<id>profile-jmeter</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>1.10.1</version>
<executions>
<execution>
<id>run-jmeter-tests</id>
<phase>verify</phase>
<goals>
<goal>jmeter</goal>
</goals>
</execution>
</executions>
<configuration>
<testFilesDirectory>${basedir}/src/test/jmeter/scripts/${testType}</testFilesDirectory>
<overrideRootLogLevel>ERROR</overrideRootLogLevel>
<testResultsTimestamp>false</testResultsTimestamp>
<resultsFileFormat>xml</resultsFileFormat>
Is there anything we can add to the maven command or the maven config in pom.xml so that the jmx files run in parallel.
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 23:51
Getting started with Go. I'm trying to write a function that title cases a first name then caps the second. Why can't I stack method calls as below?
(The reason why I want to put a .ToLower before is because the .Title only caps the first letter leaving the rest unchanged)
package main
import (
"fmt"
"strings"
)
func main() {
firstName := "mElVIn"
lastName := "themelvINATor"
fmt.Println(nameCap(firstName, lastName))
}
func nameCap(s1, s2 string) (str1, str2 string) {
s1 = strings.ToLower(s1).Title(s1)
s2 = strings.ToUpper(s2)
retu s1, s2
}
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 23:51
I would like to select the range of cells using rows and columns information. The idea is to select entire column and entire row and then make selection of the overlapping areas. Is it possible to do this in Excel VBA? The idea visualized here
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 23:51
See Merging multiple custom observables in RX for background.
My scenario is that I have a number of arbitrary sensors (hardware). I have written some pluggable modules that can coect to these sensors in C#. They currently each use a thread to run an acquisition routine on a timer. The larger goal is to change polling to RX as well once I understand how!
There is a requirement to monitor these sensors in groups so I was thinking there would be an aggregated topic where a monitor could subscribe to for updates from a particular group of sensors (Temperature, Signal Strength etc) and potentially make changes to the behaviour of the system based on the readings from the sensors.
Additionally each sensor would possibly coect to a logging observer to log their current state and the monitor would coect to a logging observer to log its decisions
The same design patte would apply to any new sensor ,monitor or logger we introduce.
Thanks for reading
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 22:51
I have an extension to httpd.conf. I am using it for aliases and changing root: The original root was set to /data/www/html and I need it to be /data/www/pages. For several reasons I do not want to touch the original httpd.conf, therefore, I created the custom_config.conf
custom_config.conf
<VirtualHost *>
DocumentRoot /data/www/pages
Alias "/blah_blah" "/data/www/blah_blah"
<Directory "/data/www/pages">
Options None
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
With this, I can access http but not https. I tried <VirtualHost *:443> and restarted the httpd of course, but still not working. I am not an expert with Apache, but I think it has to do something with ssl.conf that is under conf.d forlder; same place I put my custom_config.conf
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 22:51
I am working on several microservices written in Python 3. These microservices are deployed within a Docker container.
Within the Dockerfile I pip the necessary python modules needed to code's imports.
Here is the problem : on occasion pip fails with a 404 error, for example when pulling python-dateutil.
This problem is rare but aoying.
So, to avoid this, I thought I would download necessary python modules, since current versions work and do not require updates, and make them part of the Docker bundling when making the container, and then pip install locally instead of installing from remotely.
Question : Is this approach recommendable?
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 22:51
img1 = imread('01.01.bmp');
img2 = imread('01.02.bmp');
feature1 = sift_f(img1);
feature2 = sift_f(img2);
indexPairs = matchFeatures(feature1,feature2) ;
matchedPoints1 = vpts1(indexPairs(:,1));
matchedPoints2 = vpts2(indexPairs(:,2));
figure; showMatchedFeatures(img1,img2,matchedPoints1,matchedPoints2);
legend('matched points 1','matched points 2');
The matrices feature1 and feature2 are of different sizes. Infact, they differ in the number of columns. So, matchFeatures() function is not working. How do I match the features then?
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 21:50
I'm trying to install the n-body integrator REBOUND onto my laptop which has Windows 10 and the python package Anaconda for python 2.7. I've been doing many many hours of research to solve this on my own but to no avail. I'm fairly new to programming so I'm not completely sure where to spot exact problems all the time and I have installed a few modules and packages that help with compatibility issues for installation. While I would love an answer, I would appreciate even a step in the right direction.
I tried pip install in the virtual environment from anaconda in the exact steps shown in the REBOUND installation guide. Here is the output and the few errors: Complete Output of Install with Error
And here's the other error: Final error in Red
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 21:50
This is, ,,, *&% a ::; demo + String. + Need to**@!/// format::::: !!! this.`
Output Required:
This is a demo String Need to format this
without using str_trim.
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 21:50
Say I have 3 tables with a structure similar to this:
| id | customer_id | col1 | col2 | col3 |
|----|-------------|-------------|-------------|-------------|
| 1 | C123 | some values | some values | some values |
| 2 | C234 | some values | some values | some values |
| 3 | C345 | some values | some values | some values |
Now I want to copy the rows from table 1 and table 2 to table 3 with a specific customer-id.
So in pseudo code something like:
COPY FROM tab1, tab2 TO tab3 WHERE customer-ID = C123
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 20:43
I heard that some industry experts said when the web application is being large, AngularJS slow down your web application. So beware of using AngularJS when creating large scale web app. What is the real truth of that?
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 20:43
I have developed Prestashop android client application with default webservices (i.e. using cloud store). Currently I have been working on PayPal payment integeration for mobile client with MSDK.
Ref : https://github.com/p...Pal-Android-SDK
And transactions are working fine with my sand box business and buyer account credentials.But as PayPal mobile SDK integration, successful payment data need to verified by a server(as per my thought Prestashop) with PayPal. After a successful payment is made with the MSDK 2.x, the MSDK retus data to app about the payment (received by the MSDK from the REST API). Here is a sample response:
{ "client": { "environment": "sandbox", "paypal_sdk_version": "2.0.0", "platform": "iOS", "product_name": "PayPal iOS SDK;" }, "response": { "create_time": "2014-02-12T22:29:49Z", "id": "PAY-564191241M8701234KL57LXI", "intent": "sale", "state": "approved" }, "response_type": "payment" }
And the server need to call PayPal services to confirm that the payment is authentic, for the expected amount and currency, and that we are the recipient of the payment.
Ref : https://developer.pa...mobile-payment/
I know that Prestashop support Paypal module for web version.I need to know that is PayPal module provides webservices to achieve the verification, if it so how to enable it.
By the way I'am not expert in php :(
Thanks in advance :)
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 20:43